745961f768fa14df63e5c2d7fbe678a5a946eb92,jt-scale/src/main/java/it/geosolutions/jaiext/scale/ScaleCRIF.java,ScaleCRIF,getBounds2D,#ParameterBlock#,244

Before Change


        float trans_y = paramBlock.getFloatParameter(3);

        // Get the source dimensions
        float x0 = (float) source.getMinX();
        float y0 = (float) source.getMinY();
        float w = (float) source.getWidth();
        float h = (float) source.getHeight();

After Change


        float trans_y = paramBlock.getFloatParameter(3);

        // Get the source dimensions
        float x0 = source.getMinX();
        float y0 = source.getMinY();
        float w = source.getWidth();
        float h = source.getHeight();